const crypto/internal/fips140/sha3.marshaledSize

7 uses

	crypto/internal/fips140/sha3 (current package)
		sha3.go#L172: 	marshaledSize = len(magicSHA3) + 1 + 200 + 1 + 1
		sha3.go#L176: 	return d.AppendBinary(make([]byte, 0, marshaledSize))
		sha3.go#L200: 	if len(b) != marshaledSize {
		shake.go#L96: 	return s.AppendBinary(make([]byte, 0, marshaledSize+len(s.initBlock)))
		shake.go#L109: 	if len(b) < marshaledSize {
		shake.go#L112: 	if err := s.d.UnmarshalBinary(b[:marshaledSize]); err != nil {
		shake.go#L115: 	s.initBlock = bytes.Clone(b[marshaledSize:])